home *** CD-ROM | disk | FTP | other *** search
- Open(FileName : TEXT);
-
- Opens a file for reading capability
-
- GetFile(VAR FileName : TEXT);
-
- Displays the standard Macintosh file dialog which requests the user to select a text file
-
- Read(VAR V1,V2, ... , Vn : INTEGER or REAL or LONGINT or CHAR or STRING);
-
- Reads data from the current open text file and does not implement a carriage return
-
- ReadLn(VAR V1,V2, ... , Vn : INTEGER or REAL or LONGINT or CHAR or STRING);
-
- Reads data from the current open text file and implements a carriage return
-
- EOF(Filename : TEXT) : BOOLEAN;
-
- Returns TRUE if the reading pointer of an open file has reached the end of the file
-
- EOLN(FileName : TEXT) : BOOLEAN;
-
- Returns TRUE if the reading pointer of an open file has reached the end of the line or carrage return
-
- ReWrite(FileName : TEXT);
-
- Creates a new file or opens an exixting one
-
- PutFile(CommentStr, FileDefault : STRING; VAR FileName : TEXT);
-
- Displays the standard Macintosh file dialog which requests the user to select a text file for output
-
- Append(FileName : TEXT);
-
- Allows the user to add text information to the end of a text file
-
- Close(FileName : TEXT);
-
- Closes a currently open text file
-
- Write(V1,V2,...,Vn: INTEGER or REAL or LONGINT or CHAR or STRING);
-
- Writes data to a text file but does not implement a carriage return
-
- WriteLn(V1,V2,...,Vn: INTEGER or REAL or LONGINT or CHAR or STRING);
-
- Writes data to a text file and implements a carriage return
-
-